home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr15 / hermite.zip / MOTION.POV < prev   
Text File  |  1993-04-30  |  705b  |  24 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2. #include "colors.inc"
  3. #include "textures.inc"
  4. #include "shapes.inc"
  5.  
  6. #include "motion.inc"
  7. camera {
  8.    location <XLoc  YLoc  ZLoc>
  9.    direction <0 0  1>
  10.    up  <0  1  0>
  11.    right <1.33333 0 0>
  12.    look_at <0 0 0>
  13. }
  14.  
  15. // Light source
  16. object { light_source {  <10 15  -25> color White } }
  17. object { light_source {  <-5 5  -1> color White } }
  18.  
  19. object { sphere { <-1 0.75 -1> 0.5 } texture { Glossy color Salmon  } }
  20. object { sphere { < 0 0.75  0> 0.5 } texture { Glossy color Plum    } }
  21. object { sphere { < 1 0.75 -1> 0.5 } texture { Glossy color Thistle } }
  22.  
  23. object { plane { <0 1 0> 0 } texture { Glossy  color SteelBlue } }
  24.